home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh
-
- set -e
-
- if [ "$1" = configure ]; then
- (
- cd /usr/lib/python2.5
- files=$(dpkg -L python2.5-minimal | sed -n '/\.py$/s,^/usr/lib/python2.5/,,p')
- /usr/bin/python2.5 /usr/lib/python2.5/py_compile.py $files
- if grep -sq '^byte-compile[^#]*optimize' /etc/python/debian_config; then
- /usr/bin/python2.5 -O /usr/lib/python2.5/py_compile.py $files
- fi
- )
- bc=no
- if [ -z "$2" ] || dpkg --compare-versions "$2" lt 2.5-3 \
- || [ -f /var/lib/python/python2.5_installed ]; then
- bc=yes
- fi
- if ! grep -sq '^supported-versions[^#]*python2.5' /usr/share/python/debian_defaults
- then
- # FIXME: byte compile anyway?
- bc=no
- fi
- if [ "$bc" = yes ]; then
- # new installation or installation of first version with hook support
- if [ "$DEBIAN_FRONTEND" != noninteractive ]; then
- echo "Linking and byte-compiling packages for runtime python2.5..."
- fi
- version=$(dpkg -s python2.5-minimal | awk '/^Version:/ {print $2}')
- for hook in /usr/share/python/runtime.d/*.rtinstall; do
- [ -x $hook ] || continue
- $hook rtinstall python2.5 "$2" "$version"
- done
- if [ -f /var/lib/python/python2.5_installed ]; then
- rm -f /var/lib/python/python2.5_installed
- rmdir --ignore-fail-on-non-empty /var/lib/python 2>/dev/null
- fi
- fi
- fi
-
- case "$1" in
- configure)
- # Create empty directories in /usr/local
- if [ ! -e /usr/local/lib/python2.5 ]; then
- mkdir -p /usr/local/lib/python2.5 2> /dev/null || true
- chmod 2775 /usr/local/lib/python2.5 2> /dev/null || true
- chown root:staff /usr/local/lib/python2.5 2> /dev/null || true
- fi
- if [ ! -e /usr/local/lib/python2.5/site-packages ]; then
- mkdir -p /usr/local/lib/python2.5/site-packages 2> /dev/null || true
- chmod 2775 /usr/local/lib/python2.5/site-packages 2> /dev/null || true
- chown root:staff /usr/local/lib/python2.5/site-packages 2> /dev/null || true
- fi
- ;;
- esac
-
-
-
- exit 0
-